Create a PostgreSQL Database

If you are a DBA or a system administrator responsible for installing the software on a PostgreSQL database management system, perform the following tasks:

Use a graphical user interface (GUI) tool, such as pgAdmin or a similar tool, to create the erwin Data Modeler Workgroup Edition database. If a GUI tool is not available, you can use SQL Shell to type in the appropriate commands manually.

Configure PostgreSQL:

You can configure PostgreSQL database to accept any IP address.

Follow these steps:

  1. Set the IP address to 0.0.0.0/0
  2. Select the server.
  3. Click Tools, Server Configuration, pg_hba.conf. Alternately, you can find the file at C:\Program Files\PostgreSQL\<version>\data.
  4. Double-click the last empty column.
  5. Complete the following fields:
    Type

    host

    Database

    all

    User

    all

    Ip_Address

    0.0.0.0/0

    Method

    md5

  6. Select Enable and click Ok.
  7. Click Save.
  8. Click Reload Server.

The PostgreSQL database configuration is complete.

Back to Top